🔎Subdomain Finder API

Performs an advanced scan to find most subdomains of a provided domain.

The API host for all tools is tools.datalabs.net.


Subdomain Finder

POST https://tools.datalabs.net/subdomainFinder
Host: tools.datalabs.net
Content-Type: application/json

{
  "key": "DATALABS_API_KEY", // Required - DataLabs API Key
  "domain": "example.com" // Required - Domain to be checked
}
Example Response
{
    "success": true,
    "subdomains": [
        {
            "subdomain": "subdomain1.example.com",
            "ip": "none",
            "cloudflare": true
        },
        {
            "subdomain": "subdomain2.example.com",
            "ip": "122.198.12.142",
            "cloudflare": false
        },
        {
            "subdomain": "subdomain3.example.com",
            "ip": "174.205.98.77",
            "cloudflare": true
        },
        {
            "subdomain": "subdomain4.example.com",
            "ip": "none",
            "cloudflare": false
        }
    ],
    "cached": true,
    "cache_time": "20XX-XX-XX 00:36:03"
}
```

Last updated